projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
7d413cb
)
; Fix off-by-one error
author
Philipp Stephani
<phst@google.com>
Sat, 3 Jun 2017 09:42:07 +0000
(11:42 +0200)
committer
Philipp Stephani
<phst@google.com>
Sat, 3 Jun 2017 09:42:07 +0000
(11:42 +0200)
src/editfns.c
patch
|
blob
|
history
diff --git
a/src/editfns.c
b/src/editfns.c
index 1ce5e8ca6f0b74be4298b7105e00357a0061f96e..56aa8ce1a72af4742b2e8cb157d2883a87571e83 100644
(file)
--- a/
src/editfns.c
+++ b/
src/editfns.c
@@
-4747,7
+4747,7
@@
styled_format (ptrdiff_t nargs, Lisp_Object *args, bool message)
/* Add text properties from arguments. */
if (arg_intervals)
- for (ptrdiff_t i = 1; i < num_percent; i++)
+ for (ptrdiff_t i = 1; i <
=
num_percent; i++)
if (info[i].intervals)
{
len = make_number (SCHARS (info[i].argument));